Console Programming Image

C Programming: Billing Statement

Technologies:

C Programming icon

This C Programming activity was commissioned to me and here are the requirements needed.


Requirements:

  • Create a Billing Statement for Masarap - Kumain Restaurant
  • Using array of structure passing to function BILLING, writea program to generate the above output.
  • Menu can be by package type (ex: Solo Pack, Barkada Package or Family Package)

  • Compute for the following:
    • Amount = QTY * Unit price
    • Total Bill = Sum of individual amount
    • Discount
      • 2% discount if the Total Bill is between 100 - 2000
      • 5% discount of the Total Bill for PWD
      • 20% discount of the Total Bill for Senior
    • Net Bill = Total Bill - Discount
    • Change = Amount Tendered - Net Bill